1a57ea46cf4edbe08f3b3ba6b80f990e25354129,src/main/java/teammates/common/datatransfer/CommentAttributes.java,CommentAttributes,CommentAttributes,#String#String#CommentParticipantType#Set#Date#Text#,46

Before Change


        this.giverEmail = giverEmail;
        this.recipientType = recipientType == null ? CommentParticipantType.PERSON : recipientType;
        this.recipients = recipients;
        this.commentText = commentText == null ? null : new Text(Sanitizer.sanitizeForRichText(commentText.getValue()));
        this.createdAt = createdAt;
        this.lastEditorEmail = giverEmail;
        this.lastEditedAt = createdAt;

After Change


        this.giverEmail = giverEmail;
        this.recipientType = recipientType == null ? CommentParticipantType.PERSON : recipientType;
        this.recipients = recipients;
        this.commentText = Sanitizer.sanitizeForRichText(commentText);
        this.createdAt = createdAt;
        this.lastEditorEmail = giverEmail;
        this.lastEditedAt = createdAt;